3aa6217bcaeaebd55472ad9d12e426a0854bf9bb,findbugs/src/java/edu/umd/cs/findbugs/detect/Naming.java,Naming,checkSuper,#XMethod#HashSet#,103
Before Change
intentional = true;
}
for(JavaClass s : clazz.getSuperClasses())
if (definedIn(s, m)) {
intentional = true;
priority = NORMAL_PRIORITY;
}
After Change
priority = NORMAL_PRIORITY;
}
if (m3 == null) for(JavaClass s : clazz.getSuperClasses())
if ((m3 = definedIn(s, m)) != null) {
// the method we define is also defined in our superclass
priority = NORMAL_PRIORITY;
}
if (false && m3 == null) for(JavaClass i : clazz.getAllInterfaces())
if ((m3 = definedIn(i, m)) != null) {
priority = NORMAL_PRIORITY;
// the method we define is also defined in an interface